home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / phigs / ptk.lha / ptk / source / demo / phinter.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-21  |  939 b   |  38 lines

  1. /*--------------------------------------------------------------------------- 
  2.  
  3.  Program name: Phinter utility program.
  4.  
  5.  Author: Gareth Williams
  6.  
  7.  Description:
  8.  
  9.  Modification history : (Version), (Date), (Name), (Description).
  10.  
  11.  1.0, 1st March 1991, G. Williams, First Version.
  12.  
  13. ----------------------------------------------------------------------------*/
  14.  
  15. #include <stdio.h>
  16. #include <math.h>
  17. #include <phigs.h>
  18. #include "ptk.h"
  19.  
  20. /*--------------------------------------------------------------------------*/
  21.  
  22. main()
  23. {
  24.   ptk_inithashtables();
  25.   ptk_createhashtable("structureid", 1, 100);
  26.   ptk_createhashtable("colourindex", 2, 32);
  27.   ptk_createhashtable("label", 1, 100);
  28.   ptk_createhashtable("pickid", 1, 100);
  29.   ptk_createhashtable("viewindex", 1, 64);
  30.   ptk_createhashtable("name", 1, 100);
  31.   ptk_callphinter();
  32.   exit(0);
  33. }
  34.  
  35. /*--------------------------------------------------------------------------*/
  36.  
  37. /* end of phinter.c */
  38.